home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 043a / bbsee25b.zip / GO.BAT < prev    next >
DOS Batch File  |  1992-05-31  |  862b  |  32 lines

  1. @echo off
  2. rem
  3. rem BBSee is a command line driven program so the use of this file
  4. rem is not necessary.  It is mainly intended for people who do not
  5. rem read documentation.
  6. rem
  7. if exist BBSee.CFG goto OKAY
  8. rem
  9. rem BBSee expect to find a configuration file BBSEE.CFG before being
  10. rem if it doesn't exist it will abort.  There are many features available
  11. rem in the configuration.  Read Chapter 2 for further information, as the
  12. rem BBSetup program file can create some files on your disk.
  13. rem
  14. echo BBSee configuration file not found.
  15. rem
  16. if not exist BBSetup.EXE goto FILEERR
  17. bbsetup
  18. rem
  19. rem check to see if you aborted
  20. if not exist BBSee.CFG got FILEERR
  21. :OKAY
  22. rem
  23. if not exist BBSee.EXE goto FILEERR
  24. bbsee
  25. rem
  26. echo You should delete GO.BAT and use the command line.
  27. goto end
  28. return
  29. :FILEERR
  30. echo A required file was not found.
  31. :end
  32.